Telegram Group & Telegram Channel
🇩🇪 بسته URLLIB

❗️ این بسته که برای کار با URLها از چندین ماژول استفاده می‌کند که عبارتند از:

urllib.request که برای باز کردن و خواندن URLها استفاده می‌شود.

urllib.error که برای مدیریت کردن خطاهایی است که توسط  urllib.request بوجود آمده‌اند.

🤔 ماژول urllib.request رابطی بسیار ساده برای ایجاد درخواست‌ها بوجود می‌آورد و هم‌چنین برای مدیریت‌کردن احراز هویت‌ گزینه‌های بیشتری در اختیار برنامه نویس قرار می‎دهد.

↙️ در کد زیر درخواستی توسط متد urlopen فرستاده شد:

import urllib

req = urllib.request.urlopen('https://example.ir')

print(req.status)

🔅 دریافت منبع از اینترنت هم توسط متد urlretrieve انجام می‌شود.

 

⭕️ مثال تفاوت دریافت عکس با Urllib و Requests :

import urllib

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

urllib.request.urlretrieve(url, "image-urllib.png")



import requests

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

r = requests.get(url)

with open("image-requests.png", "wb") as code:

    code.write(r.content)



tg-me.com/python12/1374
Create:
Last Update:

🇩🇪 بسته URLLIB

❗️ این بسته که برای کار با URLها از چندین ماژول استفاده می‌کند که عبارتند از:

urllib.request که برای باز کردن و خواندن URLها استفاده می‌شود.

urllib.error که برای مدیریت کردن خطاهایی است که توسط  urllib.request بوجود آمده‌اند.

🤔 ماژول urllib.request رابطی بسیار ساده برای ایجاد درخواست‌ها بوجود می‌آورد و هم‌چنین برای مدیریت‌کردن احراز هویت‌ گزینه‌های بیشتری در اختیار برنامه نویس قرار می‎دهد.

↙️ در کد زیر درخواستی توسط متد urlopen فرستاده شد:

import urllib

req = urllib.request.urlopen('https://example.ir')

print(req.status)

🔅 دریافت منبع از اینترنت هم توسط متد urlretrieve انجام می‌شود.

 

⭕️ مثال تفاوت دریافت عکس با Urllib و Requests :

import urllib

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

urllib.request.urlretrieve(url, "image-urllib.png")



import requests

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

r = requests.get(url)

with open("image-requests.png", "wb") as code:

    code.write(r.content)

BY پایتون / python




Share with your friend now:
tg-me.com/python12/1374

View MORE
Open in Telegram


پایتون python Telegram | DID YOU KNOW?

Date: |

The Singapore stock market has alternated between positive and negative finishes through the last five trading days since the end of the two-day winning streak in which it had added more than a dozen points or 0.4 percent. The Straits Times Index now sits just above the 3,060-point plateau and it's likely to see a narrow trading range on Monday.

Telegram is riding high, adding tens of million of users this year. Now the bill is coming due.Telegram is one of the few significant social-media challengers to Facebook Inc., FB -1.90% on a trajectory toward one billion users active each month by the end of 2022, up from roughly 550 million today.

پایتون python from tw


Telegram پایتون / python
FROM USA